projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0f7cdc
)
Conditionals testing for null $CC were backwards.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 12 Apr 1994 07:36:44 +0000
(07:36 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 12 Apr 1994 07:36:44 +0000
(07:36 +0000)
configure1.in
patch
|
blob
|
history
diff --git
a/configure1.in
b/configure1.in
index 2e5cf9f981f21a01f34fa3d654a500b1ce55a2c7..42cfb73d8822ed4515089b5e0d423d6c0f569ca3 100755
(executable)
--- a/
configure1.in
+++ b/
configure1.in
@@
-1075,15
+1075,16
@@
AC_CONFIG_HEADER(src/config.h)
#### Choose a compiler.
if [ "x$CC" = x ]
-then cc_specified=1
+then true
+else cc_specified=1
fi
case ${with_gcc} in
"yes" ) CC="gcc" GCC=1 ;;
"no" )
if [ "x$CC" = x ]
- then
true
;
- else
CC=cc
;
+ then
CC=cc
;
+ else
true
;
fi
;;
* )